home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-04-20 | 695 b | 25 lines | [TEXT/KAHL] |
- // Util.h
- // Ping 1.2
- //
- // A neat hack © 1992 Jon Wätte (h+@nada.kth.se)
- //
- // Freeware - permission granted to study & distribute free of charge,
- // however, you may not sell this source or any derivate thereof, nor
- // may you distribute modified source or a derivate thereof.
-
- #pragma once
-
- #define errStrings 129
- #define errNeedAppleEvents 1
-
- #define ALRTGeneralAlert 129
-
- #define Clear(x) BlockClear(&(x),sizeof(x))
- #define Fatal(e) FatalError((e),__FILE__,__LINE__)
-
- void BlockClear ( void * , long ) ;
- void FatalError ( short , char * , int ) ;
- long strlen ( char * s ) ;
- void GetUserName ( unsigned char * name ) ;
- unsigned char * AddPBuf ( unsigned char * dst , unsigned char * src ) ;
-